by Austin Ginder
WP-Cron handles scheduled background tasks.
By default WordPress runs cron checks on every page load which is not ideal for:
Recommendation
Add the following to wp-config.php
define( 'DISABLE_WP_CRON', true );
Over SSH type crontab -e
and add the following. Make sure to change the domain to your website.
10,25,40,55 * * * * curl -kILs -H 'Host: captaincore.io' https://localhost/wp-cron.php
Exit and save changes. Run crontab -l
to confirm new server level cron.
MAILTO=""
#Ansible: captaincore WordPress cron
10,25,40,55 * * * * curl -kILs -H 'Host: captaincore.io' https://localhost/wp-cron.php
Bonus tip: Use Action Scheduler on high traffic ecommerce sites
https://actionscheduler.org/wp-cli/
WordPress databases comes with an options
table and entries in this table can optionally be marked for autoload.
If the amount of data being autoloaded becomes excessive, more than 10MB, it can cause performance issues or out of memory errors.
How much of your website is being cached?
Expanding cache coverage